home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Full / NetObjects Fusion 9 Standard / NOF9_Full_EN.exe / data1.cab / FSI / ControlPanel / lib / ControlPanelEvents.js
Encoding:
JavaScript  |  2005-11-16  |  702 b   |  32 lines

  1. /****i* SOURCE_FILE/INFO
  2. *
  3. * NAME
  4. *  ControlPanelEvents.js
  5. *
  6. * USAGE
  7. *  Part of Netobjects JavaScript Library.
  8. *
  9. * COPYRIGHT
  10. *  Copyright ⌐ 2002-2004 Website Pros, Inc.
  11. *  All Rights Reserved.
  12. *
  13. *  This is an unpublished work protected by Website Pros, Inc.
  14. *  as a trade secret, and is not to be used or disclosed except as
  15. *  expressly provided in a written license agreement executed by
  16. *  you and Website Pros, Inc.
  17. *
  18. *      <copyright@websitepros.com>
  19. *
  20. * NOTES
  21. *  JavaScript code.
  22. *****/
  23.     
  24. function dispatchEvent (action, source) {   
  25.     var evt = new NOF.EventObject(action, source);
  26.     cpApp.dispatchEvent(evt);
  27. }
  28.  
  29. function onLoad() {
  30.     dispatchEvent("Load", null);
  31. }
  32.